41. Quiz: NOT

Questions using the NOT operator

We can pull all of the rows that were excluded from the queries in the previous two concepts with our new operator.

  1. Use the accounts table to find the account name, primary poc, and sales rep id for all stores except Walmart, Target, and Nordstrom.

  2. Use the web_events table to find all information regarding individuals who were contacted via any method except using organic or adwords methods.

Use the accounts table to find:

  1. All the companies whose names do not start with 'C'.

  2. All companies whose names do not contain the string 'one' somewhere in the name.

  3. All companies whose names do not end with 's'.

Code

If you need a code on the https://github.com/udacity.